home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / demo / igps_102.zip / DLG_HOST.H < prev    next >
C/C++ Source or Header  |  1994-06-23  |  1KB  |  42 lines

  1. ////////////////////////////////////////////////////////////////////////////////////
  2. // Internet Global Phone Project
  3. // dlg_host.h : header file for trivial dialog box class
  4. //
  5. // Dialog box used in requests for IP address from user.
  6. //
  7. ////////////////////////////////////////////////////////////////////////////////////
  8. // Copyright (c) 1993-1994    microWonders Inc.  All rights reserved.
  9. //                                                                         
  10. // AN OPEN INVITION TO BUILD UPON AND CONTRIBUTE TO THE PUBLIC TECHNOLOGY POOL:
  11. // You are encouraged to redistribute, and build upon the technologies presented 
  12. // in this source module and the accompanying article in Dr. Dobb's Journal provided 
  13. // all the conditions listed in the MUSTREAD.TXT file, included with this 
  14. // distribution, are met.
  15. ////////////////////////////////////////////////////////////////////////////////////
  16. // CDlgHostID dialog
  17.  
  18. class CDlgHostID : public CDialog
  19. {
  20. // Construction
  21. public:
  22.     CDlgHostID(CWnd* pParent = NULL);    // standard constructor                  
  23.     ULONG m_InetAddress;
  24.  
  25. // Dialog Data
  26.     //{{AFX_DATA(CDlgHostID)
  27.     enum { IDD = IDD_DLGHOSTID };
  28.     CString    m_inputAddress;
  29.     //}}AFX_DATA
  30.  
  31. // Implementation
  32. protected:
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.  
  35.     // Generated message map functions
  36.     //{{AFX_MSG(CDlgHostID)
  37.     afx_msg void OnHostIDOK();
  38.     virtual BOOL OnInitDialog();
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. };
  42.